home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / biz / dopus / DOpus414JRsrc.lha / DirectoryOpus4 / DOpus_Print / printstrings.h < prev    next >
C/C++ Source or Header  |  2000-01-29  |  2KB  |  97 lines

  1. /*
  2.  
  3. Directory Opus 4
  4. Original GPL release version 4.12
  5. Copyright 1993-2000 Jonathan Potter
  6.  
  7. This program is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU General Public License
  9. as published by the Free Software Foundation; either version 2
  10. of the License, or (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. All users of Directory Opus 4 (including versions distributed
  22. under the GPL) are entitled to upgrade to the latest version of
  23. Directory Opus version 5 at a reduced price. Please see
  24. http://www.gpsoft.com.au for more information.
  25.  
  26. The release of Directory Opus 4 under the GPL in NO WAY affects
  27. the existing commercial status of Directory Opus 5.
  28.  
  29. */
  30.  
  31. #ifndef PRINT_STRINGS
  32. #define PRINT_STRINGS
  33.  
  34. enum {
  35.     STR_SELECT_FILE,
  36.     STR_ABORT,
  37.     STR_CONTINUE,
  38.     STR_OKAY,
  39.     STR_CANCEL,
  40.     STR_FILE,
  41.     STR_TOP_MARGIN,
  42.     STR_BOTTOM_MARGIN,
  43.     STR_LEFT_MARGIN,
  44.     STR_RIGHT_MARGIN,
  45.     STR_TAB_SIZE,
  46.     STR_PRINT_PITCH,
  47.     STR_QUALITY,
  48.     STR_EJECT,
  49.     STR_CONFIGURATION,
  50.     STR_TITLE,
  51.     STR_DATE,
  52.     STR_PAGE_NUMBER,
  53.     STR_TEXT_STYLE,
  54.     STR_PRINTER,
  55.     STR_PRINT,
  56.     STR_EXIT,
  57.     STR_OUTPUT_TO,
  58.     STR_PICA,
  59.     STR_ELITE,
  60.     STR_FINE,
  61.     STR_NORMAL,
  62.     STR_BOLD,
  63.     STR_ITALICS,
  64.     STR_UNDERLINED,
  65.     STR_DOUBLESTRIKE,
  66.     STR_SHADOW,
  67.     STR_DRAFT,
  68.     STR_LETTER,
  69.     STR_HEADER,
  70.     STR_FOOTER,
  71.     STR_SIZE,
  72.     STR_PROTECTION,
  73.     STR_COMMENT,
  74.     STR_FILETYPE,
  75.     STR_PRINT_DOT,
  76.     STR_PRINTDIR,
  77.     STR_UNABLE_TO_OPEN_FILE,
  78.     STR_UNABLE_TO_OPEN_OUTPUT,
  79.     STR_UNABLE_TO_OPEN_PRINTER,
  80.     STR_ERROR_PRINTING_DIR,
  81.     STR_INCORRECT_PASSWORD,
  82.     STR_PRINT_ERROR,
  83.     STR_REALLY_ABORT,
  84.     STR_CREATING_FILE,
  85.     STR_OPENING_PRINTER,
  86.     STR_LOADING_FILE,
  87.     STR_PRINTING_FILE,
  88.     STR_PRESS_ESCAPE,
  89.     STR_PAGE,
  90.     STR_COMPLETE,
  91.  
  92.     STR_STRING_COUNT};
  93.  
  94. extern char **string_table;
  95.  
  96. #endif
  97.